home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Misc Servers / Zope.exe / FILELOGGER.PY < prev    next >
Encoding:
Python Source  |  1999-07-16  |  366 b   |  14 lines

  1. class FileLogger:
  2.     """ a File Logger
  3.  
  4.     This is just a stub, FileLogger should be smarter than
  5.     stupidFileLogger, but for the moment it's completely brain dead.
  6.     """
  7.     
  8.     def __init__(self):
  9.         pass
  10.  
  11.     def __call__(self, sub, sev, sum, det, err):
  12.         print 'syslogger %s, %s, %s, %s, %s, %s' % (self, sub, sev, sum, det, err)
  13.  
  14.